Starts a shell on the host with the requested attributes.
'Declaration
Public Overloads Function StartShell( _
ByVal As String, _
ByVal columns As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal () As Byte _
) As SessionStream
'Usage
Dim instance As Ssh
Dim term As String
Dim columns As Integer
Dim rows As Integer
Dim width As Integer
Dim height As Integer
Dim modes() As Byte
Dim value As SessionStream
value = instance.StartShell(term, columns, rows, width, height, modes)
Parameters
- term
- The TERM environment variable value (e.g., vt100).
- columns
- Terminal width, characters (e.g., 80).
- rows
- Terminal height, characters (e.g., 24).
- width
- Terminal width, pixels (e.g., 640.)
- height
- Terminal height, pixels (e.g., 480).
- modes
- Encoded terminal modes (may be null).
Return Value
A
SessionStream object that may be read from or written to.